翻訳と辞書
Words near each other
・ Dead Children Playing
・ Dead Children's Playground
・ Dead Christ (Palmezzano)
・ Dead Christ Supported by Two Angels
・ Dead Cities
・ Dead Cities (album)
・ Dead Cities, Red Seas & Lost Ghosts
・ Dead City
・ Dead City (film)
・ Dead City Dreaming
・ Dead City Radio
・ Dead City Radio and the New Gods of Supertown
・ Dead clade walking
・ Dead Clean
・ Dead Clever
Dead code
・ Dead code elimination
・ Dead Combo
・ Dead Confederate
・ Dead Confederate EP
・ Dead Congregation
・ Dead Connection
・ Dead Cool
・ Dead Coon Lake
・ Dead Corps
・ Dead Daughters
・ Dead Diamond River
・ Dead Disco
・ Dead Doll
・ Dead drop


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Dead code : ウィキペディア英語版
Dead code
In computer programming, dead code is a section in the source code of a program which is executed but whose result is never used in any other computation.〔(Debray, S. K., Evans, W., Muth, R., and De Sutter, B. 2000. Compiler techniques for code compaction. ACM Trans. Program. Lang. Syst. 22, 2 (Mar. 2000), 378-415. )〕〔Appel, A. W. 1998 Modern Compiler Implementation in Java. Cambridge University Press.〕 The execution of dead code wastes computation time and memory.
While the result of a dead computation may never be used, it may raise exceptions or affect some global state, thus removal of such code may change the output of the program and introduce unintended bugs. Compiler optimizations are typically conservative in their approach to dead code removal if there is any ambiguity as to whether removal of the dead code will affect the program output. The programmer may aid the compiler in this matter by making additional use of static and/or inline functions and enabling the use of link-time optimization.
== Example ==


int foo (int iX, int iY)

In the above example, although the division of iX by iY is computed and never used, it will throw an exception when a division by zero occurs. Therefore the removal of the dead code may change the output of the program.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Dead code」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.